html::-webkit-scrollbar{
    display: none;
}

html{
    -ms-overflow-style: none;
    scrollbar-width: none;
    background-color: rgb(44, 44, 44);
    color: white;
    font-family: 'Open Sans';
}

body{
    margin: 0%;
}

.namePresentation{
    display: flex;
    text-align: center;
    flex-direction: row;
    margin: 10%;
    align-items: center;
    justify-content: center;
    font-size: 78pt;
    margin-bottom: 30%;
    font-family: 'Montserrat';
}

.navTopGrid{
    display: grid;
    padding-inline: 2.5rem;
    grid-template-columns: minmax(10rem, auto) 8fr minmax(10rem, auto);
    background-color: rgb(49, 49, 49);
}

.navigatorTop{
    margin: auto;
    text-align: center;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0rem;
    border: none;
    border-radius: 8px;
}

.navigatorTop a{
    margin: 2%;
    height: 50px;
    text-align: center;
    line-height: 50px;
}

.navigatorTop a:visited{
    color: white;
}

.navigatorTop .topButton{
    margin: 2%;
    width: 100px;
    background-color: rgb(80, 80, 80);
    color: white;
    height: 25px;
    border: none;
    border-radius: 8px;
    transition: 0.2s ease;
    cursor: pointer;
}

.navigatorTop .topButton:hover{
    background-color: rgb(185, 185, 185);
    color: black;
}

.navigatorTop .topImg{
    display: flex;
    height: 50px;
    width: 50px;
}

.navigatorTop .projects{
    margin-right: auto + 36px;
}

.aboutMe{
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
    margin: 1%;
}

.aboutMe strong{
    font-size: x-large;
}

.aboutMe button{
    margin: inherit;
    height: 50px;
    padding-left: 5%;
    padding-right: 5%;
    background-color: rgb(80, 80, 80);
    color: white;
    text-align: center;
    transition: 0.2s ease;
    font-size: large;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.aboutMe button:hover{
    background-color: rgb(185, 185, 185);
    color: black;
}
